#
#Bryce Metz
#11/17/22
#Section 001
#Lab #11

#The makefile here compiles all the files in lab 11 together and runs the program

lab9a: mainDriver.c getHeader.c writeHeader.c fillImageArray.c writePixels.c defs.h 
	gcc -Wall -o lab9a mainDriver.c getHeader.c writeHeader.c fillImageArray.c writePixels.c

run: lab9a
	./lab9a Disney.pnm smallerDisney.pnm

clean:
	rm lab9a
	rm -f Disney2.pnm
